home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-05-25 | 1.9 KB | 71 lines |
- # From Thinking in C++, 2nd Edition
- # At http://www.BruceEckel.com
- # (c) Bruce Eckel 1999
- # Copyright notice in Copyright.txt
- # Automatically-generated MAKEFILE
- # For examples in directory C06
- # using the all compiler
- # Note: does not make files that will
- # not compile with this compiler
- # Invoke with: make -f all.makefile
-
- .SUFFIXES : .obj .cpp .c
- .cpp.obj :
- $(CPP) $(CPPFLAGS) -c $<
- .c.obj :
- $(CPP) $(CPPFLAGS) -c $<
-
- all: \
- Constructor1.exe \
- DefineInitialize.exe \
- Nojump.exe \
- Stash2Test.exe \
- Stack3Test.exe \
- Multiarg.exe \
- AutoDefaultConstructor.exe
-
- test: all
- Constructor1.exe
- DefineInitialize.exe
- Nojump.exe
- Stash2Test.exe
- Stack3Test.exe
- Multiarg.exe
- AutoDefaultConstructor.exe
-
- bugs:
- @echo No compiler bugs in this directory!
-
- Constructor1.exe: Constructor1.obj
- $(CPP) $(OFLAG)Constructor1.exe Constructor1.obj
-
- DefineInitialize.exe: DefineInitialize.obj
- $(CPP) $(OFLAG)DefineInitialize.exe DefineInitialize.obj
-
- Nojump.exe: Nojump.obj
- $(CPP) $(OFLAG)Nojump.exe Nojump.obj
-
- Stash2Test.exe: Stash2Test.obj Stash2.obj
- $(CPP) $(OFLAG)Stash2Test.exe Stash2Test.obj Stash2.obj
-
- Stack3Test.exe: Stack3Test.obj Stack3.obj
- $(CPP) $(OFLAG)Stack3Test.exe Stack3Test.obj Stack3.obj
-
- Multiarg.exe: Multiarg.obj
- $(CPP) $(OFLAG)Multiarg.exe Multiarg.obj
-
- AutoDefaultConstructor.exe: AutoDefaultConstructor.obj
- $(CPP) $(OFLAG)AutoDefaultConstructor.exe AutoDefaultConstructor.obj
-
-
- Constructor1.obj: Constructor1.cpp
- DefineInitialize.obj: DefineInitialize.cpp ..\require.h
- Nojump.obj: Nojump.cpp
- Stash2.obj: Stash2.cpp Stash2.h
- Stash2Test.obj: Stash2Test.cpp Stash2.h ..\require.h
- Stack3.obj: Stack3.cpp Stack3.h ..\require.h
- Stack3Test.obj: Stack3Test.cpp Stack3.h ..\require.h
- Multiarg.obj: Multiarg.cpp
- AutoDefaultConstructor.obj: AutoDefaultConstructor.cpp
-
-